home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / A.D. Software / OOFILE / Buildable, limited OOFILE / source / GUI / zApp-old / oofzapp.inl < prev   
Text File  |  1995-06-04  |  1KB  |  50 lines

  1. // COPYRIGHT 1994 A.D. Software, All rights reserved
  2.  
  3. // zApp Integration layer of OOFILE database
  4.  
  5. // -------------------------------------------------------
  6. //                      d b E d i t M g r
  7. // -------------------------------------------------------
  8.  
  9. inline void dbEditMgr::MainTable(dbTable* tbl) {
  10.       mMainTable = tbl;
  11. }
  12.  
  13. inline void dbEditMgr::DatabaseConnection(dbConnect* db) {
  14.       mDatabase = db;
  15. }
  16.  
  17.  
  18. inline dbEditMgr* dbEditMgr::frontmostEditMgr() {
  19.     return sFrontmost;
  20. }
  21.  
  22.  
  23. inline zFont* dbEditMgr::defEditFont()
  24. {
  25.     return sDefEditFont;
  26. }
  27.  
  28.  
  29. // -------------------------------------------------------
  30. //              O O F _ M i x E d i t P a g e
  31. // -------------------------------------------------------
  32.  
  33. inline void OOF_MixEditPage::invalidatePage()
  34. {
  35.     mValid = false;
  36. }
  37.  
  38.  
  39. // -------------------------------------------------------
  40. //                     S S T a b l e
  41. // -------------------------------------------------------
  42. inline void SSTable::selectCol(unsigned int theCol)
  43. {
  44.     mSheet->selectCol(theCol);
  45. }
  46.  
  47.  
  48.  
  49.  
  50.